ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / ChartAxis<T> Class / Max Property






In This Topic
    Max Property (ChartAxis<T>)
    In This Topic
    Gets or sets the maximum value shown on the axis. If not set, the maximum is calculated automatically.
    Syntax
    'Declaration
     
    
    Public Property Max As System.Object
    'Usage
     
    
    Dim instance As ChartAxis(Of T)
    Dim value As System.Object
     
    instance.Max = value
     
    value = instance.Max
    public System.object Max {get; set;}
    public read-write property Max: System.TObject; 
    public function get,set Max : System.Object
    public: __property System.Object* get_Max();
    public: __property void set_Max( 
       System.Object* value
    );
    public:
    property System.Object^ Max {
       System.Object^ get();
       void set (    System.Object^ value);
    }
    Remarks
    The value can be a number or a DateTime object (for time-based data).
    See Also